home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl5 / Debconf / FrontEnd / Noninteractive.pm < prev    next >
Encoding:
Perl POD Document  |  2009-03-24  |  258 b   |  21 lines

  1. #!/usr/bin/perl -w
  2. # This file was preprocessed, do not edit!
  3.  
  4.  
  5. package Debconf::FrontEnd::Noninteractive;
  6. use strict;
  7. use base qw(Debconf::FrontEnd);
  8.  
  9.  
  10.  
  11. sub init { 
  12.         my $this=shift;
  13.  
  14.         $this->SUPER::init(@_);
  15.  
  16.         $this->need_tty(0);
  17. }
  18.  
  19.  
  20. 1
  21.